home *** CD-ROM | disk | FTP | other *** search
/ Amiga News 95 / Amiga News 95.iso / dpat / dpat13 / soucres < prev    next >
Text File  |  1992-09-05  |  2KB  |  62 lines

  1.  
  2. #ifndef VARIABLES_GLOBALES_H
  3. #define VARIABLES_GLOBALES_H
  4. /*
  5. **      $Filename: Variables_Globales.h $
  6. **      $Revision: 1.56 $
  7. **      $Release: 2.11 $
  8. **      $Date : 92/08/29 $
  9. **
  10. **
  11. **      (C) Copyright 1992 David Scrève
  12. **          All Rights Reserved
  13. */
  14.  
  15.  
  16. #include <exec/types.h>
  17.  
  18. /* Nombre d'emprunt du programme */
  19. /* utilisé dans win_consul.h mais déclaré ici pour compatibilité avec */
  20. /* les différentes clauses Include de autres modules */
  21. LONG NbEmprunts;
  22.  
  23. /* this the number of the first and the last disk which are read */
  24. /* from the icon of the application */
  25. LONG FirstDisk;
  26.  
  27.  
  28. struct FileHandle *adherents,*prog,*emprunts,*categorie,*disk,*nouveautes;
  29. struct FileHandle *commandes, *progX;
  30.  
  31. LONG nombreoctets;
  32.  
  33. char texte[STD_STRING_LEN];
  34. char news_nom[STD_STRING_LEN],emprunts_nom[STD_STRING_LEN];
  35. char prog_nom[STD_STRING_LEN],progX_nom[STD_STRING_LEN];
  36.  
  37. char AppliName[STD_STRING_LEN]; /* nom de l'application */
  38.  
  39. char CateDir_nom[STD_STRING_LEN],DiskDir_nom[STD_STRING_LEN];
  40. char AdherentDir[STD_STRING_LEN];
  41. char TempoDir[STD_STRING_LEN];
  42.  
  43. char FileName_Emprunts[]="NE_PAS_TOUCHER_DOMPUB";
  44. struct FileHandle *DoNotTouch;
  45.  
  46. LONG retour;
  47. struct programme prgme;
  48. struct adhrent adherent;
  49.  
  50. char AgnusText[STD_STRING_LEN];
  51. char DeniseText[STD_STRING_LEN];
  52. char GenlockText[STD_STRING_LEN];
  53.  
  54. char AppliTitle[]="DP Managing 68030/68882 Version Release 2.11 By David Scrève © 1992";
  55.  
  56. char Version[]="2.11";
  57. char Revision[]="5.31";
  58. char date[]="5 Septembre 1992";
  59.  
  60. BOOL DemoVersion = FALSE;
  61.  
  62. #endif  /* VARIABLES_GLOBALES_H */